home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Delphi Magazine Collection 2001
/
Delphi Magazine Collection 20001 (2001).iso
/
DISKS
/
Issue67
/
ntserv
/
Exec_AT_1_Min_from_Now.dpr
< prev
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2001-01-12
|
318 b
|
18 lines
program Exec_AT_1_Min_from_Now;
{$APPTYPE CONSOLE}
uses
Windows, SysUtils;
var
fcmdstr: string;
begin
fcmdstr := 'AT '+
FormatDateTime('h:n',Now + 0.000694) // 1 minute
+' /interactive CMD.EXE';
WinExec(pchar(fCmdStr), SW_SHOWMINNOACTIVE);
end.